home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 1 / The Arsenal Files (Arsenal Computer).ISO / dbase / verscl.doc < prev    next >
Text File  |  1993-11-06  |  1KB  |  34 lines

  1.                                             Extended Doc
  2.                                             Clarion Technical Staff
  3.                                             Version 3004
  4.                                             10/7/93
  5.  
  6.   Why doesn't a vertical scroll bar work on a browse?
  7.  
  8.  
  9.   A LISTBOX displays the entries from a QUEUE that has been
  10.   specified for the LISTBOX. If there are 10 rows in the LISTBOX
  11.   and 100 enties in the QUEUE associated with this LISTBOX
  12.   then the vertical scroll bar will scroll the entries
  13.   within the LISTBOX. If however there are only 10 records in
  14.   the QUEUE then the vertical scroll bar does nothing.
  15.  
  16.   The BROWSE procedure generates code that creates a QUEUE and reads
  17.   the same number of entries into that QUEUE as rows in the LISTBOX.
  18.   Therefore a vertical scroll bar on a BROWSE LISTBOX will not scroll
  19.   records and should not be used.
  20.  
  21.   To move up and down in a BROWSE LISTBOX you can do the following:
  22.  
  23.   PageUp / PageDown
  24.  
  25.   ArrowUp / ArrowDown
  26.  
  27.   Press the right mouse button in the top portion of the LISTBOX to
  28.   up and in the bottom portion to move down.
  29.  
  30.  
  31.   The LIST template generates code that reads all the records
  32.   requested into a QUEUE. In this case the vertical scroll bar
  33.   in practical.
  34.